CreateFile
Creates a new file. The type of the file which will be created needs to be set.
Syntax
bool CreateFile(sExtension);
Parameters
Name | Data type | Description |
---|---|---|
sExtension | const wchar_t* | The file extension. The following values are possible: docx , xlsx , pptx , or pdf (see OFFICESTUDIO_FILE_XXX values). |
Example
C++
std::wstring sWorkDirectory = NSUtils::GetBuilderDirectory();
CDocBuilder::Initialize(sWorkDirectory.c_str());
CDocBuilder oBuilder;
oBuilder.CreateFile("docx");
CDocBuilder::Dispose();
.docbuilder
builder.CreateFile("docx")